home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- String STRING001
- String STRING002
- String STRING003
- String STRING004
- String STRING005
- String STRING006
-
- ;------------------------------------------------------------------------------
-
- :LABEL001
- Cls
- Input "@X09Enter user's record number@X07", STRING001
- If (STRING001 == "") Then
- Stop
- Else
- Gosub LABEL002
- Endif
- :LABEL002
- GetAltUser STRING001
- Newlines 2
- Input "@X0AEnter the conference you wish to view@X07", STRING002
- Gosub LABEL003
- :LABEL003
- STRING003 = ConfReg(STRING002)
- STRING004 = ConfExp(STRING002)
- STRING005 = ConfSel(STRING002)
- Select Case (STRING003)
- Case "0"
- STRING003 = "NO"
- Case "1"
- STRING003 = "YES"
- Case Else
- Newline
- PrintLn "@X0CERROR! Aborting View conference@X07"
- Stop
- End Select
- Select Case (STRING004)
- Case "0"
- STRING004 = "NO"
- Case "1"
- STRING004 = "YES"
- Case Else
- Newline
- PrintLn "@X0CERROR! Aborting View conference@X07"
- Stop
- End Select
- Select Case (STRING005)
- Case "0"
- STRING005 = "NO"
- Case "1"
- STRING005 = "YES"
- Case Else
- Newline
- PrintLn "@X0CERROR! Aborting View conference@X07"
- Stop
- End Select
- Cls
- PrintLn "@X0B┌────────────┬──────────────┬──────────────┬───────────┬────────────┐@X07"
- PrintLn "@X0B│ Record # │ Conference │ Registered │ Expired │ Selected │@X07"
- PrintLn "@X0B├────────────┴──────────────┴──────────────┴───────────┴────────────┤@X07"
- PrintLn "@X0B @X0A ", STRING001, " ", STRING002, " ", STRING003, " ", STRING004, " ", STRING005, " @X07"
- PrintLn "@X0B├────────────┬──────────────┬──────────────┬───────────┬────────────┤@X07"
- PrintLn "@X0B│ Record # │ Conference │ Registered │ Expired │ Selected │@X07"
- PrintLn "@X0B└────────────┴──────────────┴──────────────┴───────────┴────────────┘@X07"
- PutUser
- Newlines 4
- Wait
- Input "@X0FDo you want to view another user's conference flags@X07", STRING006
- Select Case (STRING006)
- Case "Y"
- Gosub LABEL001
- Case "y"
- Gosub LABEL001
- Case Else
- Stop
- End Select
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 2 Cls
- ; 1 Wait
- ; 18 Goto
- ; 9 Let
- ; 10 PrintLn
- ; 9 If
- ; 3 Input
- ; 1 PutUser
- ; 4 Gosub
- ; 3 Newline
- ; 2 Newlines
- ; 5 Stop
- ; 1 GetAltUser
- ;
- ;
- ; ■ Functions used :
- ;
- ; 9 ==
- ; 9 !
- ; 1 ConfReg()
- ; 1 ConfExp()
- ; 1 ConfSel()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : WR
- ;
- ; W - Write user ■ 5
- ; Program writes a user record. Although this may be normal for a
- ; User Editor, it may also be a way to modify an account level.
- ; ■ Search for : PUTUSER
- ;
- ; R - Read user ■ 5
- ; User records are read, this may signify that someone wants to get
- ; various informations about a user (for example his password), but
- ; this may also be normal for a program accessing user records (for
- ; example a User Editor)
- ; ■ Search for : GETALTUSER
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 0 For/Next
- ; 0 While/EndWhile
- ; 1 If/Then or If/Then/Else
- ; 4 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-